3D Graphics Programming with QuickDraw 3D 1.5.4
Previous | QD3D Book | Overview | Chapter Contents | Next |
QuickDraw 3D provides routines that you can use to get information about the style state of a view.
For information about styles and style types, see the chapter "Style Objects."
You can use the Q3View_GetBackfacingStyleState function to get the current backfacing style of a view.
TQ3Status Q3View_GetBackfacingStyleState (
TQ3ViewObject view,
TQ3BackfacingStyle *backfacingStyle);
You can use the Q3View_GetInterpolationStyleState function to get the current interpolation style of a view.
TQ3Status Q3View_GetInterpolationStyleState (
TQ3ViewObject view,
TQ3InterpolationStyle *interpolationType);
You can use the Q3View_GetFillStyleState function to get the current fill style of a view.
TQ3Status Q3View_GetFillStyleState (
TQ3ViewObject view,
TQ3FillStyle *fillStyle);
You can use the Q3View_GetHighlightStyleState function to get the current highlight style of a view.
TQ3Status Q3View_GetHighlightStyleState (
TQ3ViewObject view,
TQ3AttributeSet *highlightStyle);
You can use the Q3View_GetSubdivisionStyleState function to get the current subdivision style of a view.
TQ3Status Q3View_GetSubdivisionStyleState (
TQ3ViewObject view,
TQ3SubdivisionStyleData *subdivisionStyle);
You can use the Q3View_GetOrientationStyleState function to get the current frontfacing direction style of a view.
TQ3Status Q3View_GetOrientationStyleState (
TQ3ViewObject view,
TQ3OrientationStyle *fontFacingDirectionStyle);
You can use the Q3View_GetReceiveShadowsStyleState function to get the current shadow-receiving style of a view.
TQ3Status Q3View_GetReceiveShadowsStyleState (
TQ3ViewObject view,
TQ3Boolean *receives);
You can use the Q3View_GetPickIDStyleState function to get the current picking ID style of a view.
TQ3Status Q3View_GetPickIDStyleState (
TQ3ViewObject view,
unsigned long *pickIDStyle);
You can use the Q3View_GetPickPartsStyleState function to get the current picking parts style of a view.
TQ3Status Q3View_GetPickPartsStyleState (
TQ3ViewObject view,
TQ3PickParts *pickPartsStyle);
You can use the Q3View_GetAntiAliasStyleState function to determine the state of antialiasing in a view.
TQ3Status Q3View_GetAntiAliasStyleState(
TQ3ViewObject view,
TQ3AntiAliasStyleData *antiAliasData);
Previous | QD3D Book | Overview | Chapter Contents | Next |